Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  List  Physical  Memory  Properties  

 Content of List Physical Memory Properties.ps1
MD5 Hash: 6DAC1DE7E0F311674E712ADC65F2DFDE
$strComputer = "."

$colItems = get-wmiobject -class "Win32_PhysicalMemory" -namespace "root\CIMV2" `
-computername $strComputer

foreach ($objItem in $colItems) {
write-host "Bank Label: " $objItem.BankLabel
write-host "Capacity: " $objItem.Capacity
write-host "Caption: " $objItem.Caption
write-host "Creation Class Name: " $objItem.CreationClassName
write-host "Data Width: " $objItem.DataWidth
write-host "Description: " $objItem.Description
write-host "Device Locator: " $objItem.DeviceLocator
write-host "Form Factor: " $objItem.FormFactor
write-host "Hot-Swappable: " $objItem.HotSwappable
write-host "Installation Date: " $objItem.InstallDate
write-host "Interleave Data Depth: " $objItem.InterleaveDataDepth
write-host "Interleave Position: " $objItem.InterleavePosition
write-host "Manufacturer: " $objItem.Manufacturer
write-host "Memory Type: " $objItem.MemoryType
write-host "Model: " $objItem.Model
write-host "Name: " $objItem.Name
write-host "Other Identifying Information: " $objItem.OtherIdentifyingInfo
write-host "Part Number: " $objItem.PartNumber
write-host "Position In Row: " $objItem.PositionInRow
write-host "Powered-On: " $objItem.PoweredOn
write-host "Removable: " $objItem.Removable
write-host "Replaceable: " $objItem.Replaceable
write-host "Serial Number: " $objItem.SerialNumber
write-host "SKU: " $objItem.SKU
write-host "Speed: " $objItem.Speed
write-host "Status: " $objItem.Status
write-host "Tag: " $objItem.Tag
write-host "Total Width: " $objItem.TotalWidth
write-host "Type Detail: " $objItem.TypeDetail
write-host "Version: " $objItem.Version
write-host
}


   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a